home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 11 / Hot Mix 11.iso / HTML / httpd.conf < prev    next >
Text File  |  1995-06-26  |  3KB  |  94 lines

  1. # This is the main server configuration file. It is best to 
  2. # leave the directives in this file in the order they are in, or
  3. # things may not go the way you'd like. See URL http://hoohoo.ncsa.uiuc.edu/
  4. # for instructions.
  5.  
  6. # Do NOT simply read the instructions in here without understanding
  7. # what they do, if you are unsure consult the online docs. You have been
  8. # warned.  
  9.  
  10. # NCSA httpd (comments, questions to httpd@ncsa.uiuc.edu)
  11.  
  12. # ServerType is either inetd, or standalone.
  13.  
  14. ServerType standalone
  15.  
  16. # If you are running from inetd, go to "ServerAdmin".
  17.  
  18. # Port: The port the standalone listens to. For ports < 1023, you will
  19. # need httpd to be run as root initially.
  20.  
  21. # (nick) Need to change this to whatever variable Joe puts in the script.
  22.  
  23. Port 8069
  24.  
  25. # StartServers: The number of servers to launch at startup.  Must be
  26. # compiled without the NO_PASS compile option
  27.  
  28. StartServers 5
  29.  
  30. # MaxServers: The number of servers to launch until mimic'ing the 1.3
  31. # scheme (new server for each connection).  These servers will stay around
  32. # until the server is restarted.  They will be reused as needed, however.
  33. # See the documentation on hoohoo.ncsa.uiuc.edu for more information.
  34.  
  35. MaxServers 20
  36.  
  37. # If you wish httpd to run as a different user or group, you must run
  38. # httpd as root initially and it will switch.  
  39.  
  40. # User/Group: The name (or #number) of the user/group to run httpd as.
  41.  
  42. User nobody
  43. Group #-1
  44.  
  45. # ServerAdmin: Your address, where problems with the server should be
  46. # e-mailed.
  47.  
  48. ServerAdmin root
  49.  
  50. # ServerRoot: The directory the server's config, error, and log files
  51. # are kept in
  52.  
  53. ServerRoot $ROOTDIRECTORY/server
  54.  
  55. # ErrorLog: The location of the error log file. If this does not start
  56. # with /, ServerRoot is prepended to it.
  57.  
  58. ErrorLog /dev/null
  59.  
  60. # TransferLog: The location of the transfer log file. If this does not
  61. # start with /, ServerRoot is prepended to it.
  62.  
  63. TransferLog /dev/null
  64.  
  65. # AgentLog: The location of the agent log file.  If this does not start
  66. # with /, ServerRoot is prepended to it.
  67.  
  68. AgentLog /dev/null
  69.  
  70. # RefererLog: The location of the referer log file.  If this does not
  71. # start with /, ServerRoot is prepended to it.
  72.  
  73. RefererLog /dev/null
  74.  
  75. # RefererIgnore: If you don't want to keep track of links from certain
  76. # servers (like your own), place it here.  If you want to log them all,
  77. # keep this line commented.
  78.  
  79. #RefererIgnore servername
  80.  
  81. # PidFile: The file the server should log its pid to
  82. PidFile /usr/tmp/httpd.pid
  83.  
  84. # ServerName allows you to set a host name which is sent back to clients for
  85. # your server if it's different than the one the program would get (i.e. use
  86. # "www" instead of the host's real name).
  87. #
  88. # Note: You cannot just invent host names and hope they work. The name you 
  89. # define here must be a valid DNS name for your host. If you don't understand
  90. # this, ask your network administrator.
  91.  
  92. #ServerName new.host.name
  93.  
  94.